JsSymbol

interface JsSymbol

A JavaScript Symbol.

JavaScript symbols are unique and immutable primitive values that may be used as the key of an object property. Symbols are often used to add unique property keys to an object that won't collide with keys any other code might add to the object, and which are hidden from any mechanisms other code might use to access the object.

Since

8.13.0

See also

Functions

Link copied to clipboard
abstract fun description(): Optional<String>
Returns the description of the symbol.